home *** CD-ROM | disk | FTP | other *** search
- #
- # DOS/Linux Boot Disks
- #
- bootdisk_menu:
- set textColor = color[white on black]
- clear
- set textColor = color[yellow on blue]
- print " ULTIMATE BOOT CD VER 3.3 "
- print " http://www.ultimatebootcd.com/ "
- print " "
- set textColor = color[white on red]
- print " [DOS/Linux Boot Disks] "
- set textColor = color[white on cyan]
- print " "
- set textColor = color[yellow on cyan]
- print " DOS Boot Disks "
- set textColor = color[white on cyan]
- print " [F1] FreeDOS Boot Disk V3.25 [F3] NwDsk: NetWare Boot Disk V3.25 "
- print " [F2] Madboot Floppy V8.0 [F4] MSRRC: Bart's N/W Disk Clone V3.25 "
- print " "
- set textColor = color[yellow on cyan]
- print " Linux Boot Disks "
- set textColor = color[white on cyan]
- print " [F5] Tom's Boot Disk V2.0.103 [F7] Recovery Is Possible (RIP) V3.1 "
- print " [F6] BasicLinux V3.3 [F8] Trinux V0.89 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Please select an item (ESC returns to main menu) "
- set textColor = color[white on black]
-
- #
- # Actions
- #
- getkey
- clear
- if ($lastKey == key[f1]); then memdisk /images/freedos.img
- if ($lastKey == key[f2]); then memdisk /images/madboot.igz
- if ($lastKey == key[f3]); then memdisk /images/nwdsk.igz
- if ($lastKey == key[f4]); then memdisk /images/fdmsrrc.igz
- if ($lastKey == key[f5]); then memdisk /images/tomsrtbt.igz
- if ($lastKey == key[f6]); then memdisk /images/basiclin.igz
- if ($lastKey == key[f7]); then bcdw boot /images/rip.img ## Won't boot using memdisk/diskemu
- if ($lastKey == key[f8]); then memdisk /images/trinux.igz
- if ($lastKey == key[esc]); then script main.scn
- goto bootdisk_menu
-